/******************** BASIC ***************************************/

* {
    box-sizing: border-box;
    font-family: 'Rubik', sans-serif;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

html {
    height: 100%;
}

body {
    height: 100%;
    margin: 0px;
    background-image: linear-gradient(to top, #272727 10%, #181818 80%);
    background-attachment: fixed;
}

h1,
h2 {
    margin: 0px;
    color: white;
}


/******************** LAYOUT **************************************/

#top {
    background-color: rgba(61, 61, 61);
    text-align: center;
    padding-top: 10px;
    padding-bottom: 15px;
}

#content {
    height: auto !important;
    width: 100%;
    position: absolute;
}

#left {
    width: 180px;
    height: 100%;
    float: left;
    text-align: left;
    background-color: rgba(61, 61, 61);
}

#middle {
    height: 100%;
    position: relative;
    float: left;
    width: auto;
    background-color: transparent;
    margin-left: 20px;
    margin-top: 30px;
}


/******************** ANIMATION LAYOUT ****************************/

#animationFrame {
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
}

#lineFrame,
#ringFrame {
    z-index: -10;
}

#animationFrame,
#lineFrame,
#ringFrame {
    height: 1080px;
    width: 1920px;
    position: absolute;
}

#ringFrame div {
    position: absolute;
    display: none;
    border: 1px solid #999999;
    border-radius: 50%;
    opacity: 15%;
}

#lineFrame line {
    position: absolute;
    stroke: #999999;
    stroke-width: 1px;
    opacity: 15%;
    display: none;
}


/******************** MENU ****************************************/

.menuButton {
    height: 40px;
    width: 100%;
    background-color: rgba(61, 61, 61);
    color: white;
    padding: 8px;
    margin-bottom: 7px;
    display: block;
    border: 0;
    cursor: pointer;
    opacity: 1;
    text-align: left;
    padding-left: 10px;
}

.menuButton:disabled {
    background-color: rgba(61, 61, 61);
}

.menuButton:hover {
    background-color: rgb(70, 69, 69);
}

.menuButton:hover:disabled {
    background-color: rgba(61, 61, 61);
    cursor: no-drop;
}

.menuText {
    width: 100%;
    float: left;
    color: white;
    background-color: rgba(0, 0, 0, 0.13);
    padding: 3px;
    padding-left: 10px;
    margin-top: 20px !important;
}

#unit {
    margin-bottom: 0px;
    font-size: 10pt;
}

#firstMenuText {
    margin-top: 0px !important;
    margin-bottom: 10px !important;
}

#legend {
    height: auto;
    width: 100%;
    padding: 8px;
    display: block;
    border: 0;
    opacity: 1;
    float: left;
}

.legendEntry {
    width: 100%;
    height: 20px;
    float: left;
    color: white;
    padding-left: 0px;
    margin-bottom: 3px;
}

.legendText {
    float: left;
    text-align: left;
    font-size: 10pt;
    line-height: 20px;
    padding-left: 5px;
}

.legendCircle {
    float: left;
    height: 18px;
    width: 18px;
    border-radius: 50%;
}


/******************** CIRCLE STYLE ********************************/

.valueCircle {
    position: absolute;
    border-radius: 50%;
    visibility: hidden;
}

.tooltiptext {
    width: 240px;
    position: absolute;
    visibility: hidden;
    margin-left: -120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    z-index: 10;
    font-size: 20pt;
}


/******************** LITTLE BIT RESPONSIVE ;) ********************/

@media only screen and (max-width: 767px) {
    html {
        overflow: auto;
    }
    #left {
        width: 100% !important;
        height: 650px !important;
        float: left;
        text-align: left;
        background-color: rgba(61, 61, 61);
    }
    #middle {
        height: 500px !important;
        position: relative;
        float: left;
        width: 100% !important;
        background-color: transparent;
        margin-left: 20px;
        margin-top: 30px;
    }
}